chore(readme): swap brand mark to the new fingerprint logo#52
Merged
Conversation
Adds public/zeroauth-mark.svg + dark-mode variant. The README header now uses a <picture> element so the mark renders correctly against both light and dark GitHub themes. Other surfaces that still use the old "Z gradient" mark — favicon.svg, the landing-page nav logo, the docs site favicon, the dashboard favicon — are left as-is for a follow-up brand sweep so this commit stays focused on the README.
There was a problem hiding this comment.
Pull request overview
Updates the repository’s branding assets by introducing a new ZeroAuth “fingerprint” mark (light/dark variants) and switching the README header logo rendering to support light/dark display.
Changes:
- Replaces the README header logo with a
<picture>element that selects a light or dark SVG variant. - Adds new static assets:
public/zeroauth-mark.svg(black) andpublic/zeroauth-mark-dark.svg(white).
Reviewed changes
Copilot reviewed 1 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| README.md | Switches header logo markup to a <picture> with light/dark sources. |
| public/zeroauth-mark.svg | Adds the new light-theme fingerprint mark asset. |
| public/zeroauth-mark-dark.svg | Adds the new dark-theme fingerprint mark asset. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…verywhere This is the follow-up brand sweep to PR #52's README header change. The new mark now appears across every brand surface that previously showed the blue-gradient "Z": - public/favicon.svg (browser favicon for zeroauth.dev + dashboard) - public/index.html nav + footer (was inline SVG; now <img src> so all three READMEs/templates share one source of truth) - website/static/img/zeroauth-favicon.svg (docs site favicon + nav) - website/static/img/zeroauth-mark.svg (legacy docs brand mark file) - dashboard/public/zeroauth-mark*.svg (dashboard dev/prod static) - dashboard/src/components/layout/AppShell.tsx sidebar logo The dark variant (white fingerprint on transparent) is referenced from the landing nav/footer + dashboard sidebar because those surfaces are dark-themed. The light variant (black fingerprint) is the canonical mark for light-themed surfaces (browser favicons on light tabs, etc.). Verified the landing page renders correctly via local preview.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
public/zeroauth-mark.svg(black on transparent) +public/zeroauth-mark-dark.svg(white variant for dark mode)<picture>element so the mark renders correctly against both light and dark GitHub themesOut of scope (follow-up brand sweep)
The old blue-gradient "Z" mark is still used by:
public/favicon.svg(browser favicon)public/index.htmlline 936-942 (landing page nav)website/static/img/zeroauth-favicon.svg(docs site)/favicon.svgreferenceThose need a coordinated swap — out of scope for this README-only commit.
Test plan